Dynomotion

Group: DynoMotion Message: 7057 From: funncarsmi Date: 3/19/2013
Subject: error executing PC program
When I am in Kmotion "C Program": I can open a file download it and run it... and it runs perfectly. But I must always download it before I run it or nothing happens.

When I am in KmotionCNC or Mach3 and press the init button (which is configured to open that file) I get an error message. i.e in KmotionCNC: "Error executing PC program:" then it names the correct file, Return code =1 Abort?"

What am I doing wrong?

Gregg



#include "KMotionDef.h"
//init program for Tree320 Mill
main()
{
//define Kflop JP4 Digital I/O 16 to 25 as outputs
SetBitDirection(16,1); // define bit16 as input (0) or output (1)
SetBitDirection(17,1); // define bit17 as input (0) or output (1)
SetBitDirection(18,1); // define bit18 as input (0) or output (1)
SetBitDirection(19,1); // define bit19 as input (0) or output (1)
SetBitDirection(20,1); // define bit as input (0) or output (1)
SetBitDirection(21,1); // define bit as input (0) or output (1)
SetBitDirection(22,1); // define bit as input (0) or output (1)
SetBitDirection(23,1); // define bit as input (0) or output (1)
SetBitDirection(24,1); // define bit as input (0) or output (1)
SetBitDirection(25,1); // define bit as input (0) or output (1)
SetBit(16); //turn spindle CW LED 1=off
SetBit(17); //turn spindle CCW LED 1=off
ClearBit(18); //stop spindle & Turn Spindle Stop LED 0=on
SetBit(20); //turn drive Enable LED 1=off
SetBit(21); //turn EStop Reset Lamp LED 1=off
SetBit(22); //turn Cycle Start LED 1=off
SetBit(23); //turn Manual Mode LED 1=off
ClearBit(24); //turn Low range Lamp LED 0=on
SetBit(25); //turn High Range Lamp LED 1=off
//configure drives
ch0->InputMode=ENCODER_MODE;
ch0->OutputMode=DAC_SERVO_MODE;
ch0->Vel=30000;
ch0->Accel=900000;
ch0->Jerk=4e+006;
ch0->P=3;
ch0->I=0;
ch0->D=2;
ch0->FFAccel=0;
ch0->FFVel=0.02;
ch0->MaxI=200;
ch0->MaxErr=1e+006;
ch0->MaxOutput=2047;
ch0->DeadBandGain=1;
ch0->DeadBandRange=0;
ch0->InputChan0=0;
ch0->InputChan1=0;
ch0->OutputChan0=0;
ch0->OutputChan1=0;
ch0->MasterAxis=-1;
ch0->LimitSwitchOptions=0x0;
ch0->InputGain0=-1;
ch0->InputGain1=1;
ch0->InputOffset0=0;
ch0->InputOffset1=0;
ch0->OutputGain=1;
ch0->OutputOffset=0;
ch0->SlaveGain=1;
ch0->BacklashMode=BACKLASH_OFF;
ch0->BacklashAmount=0;
ch0->BacklashRate=0;
ch0->invDistPerCycle=1;
ch0->Lead=0;
ch0->MaxFollowingError=1000000000;
ch0->StepperAmplitude=20;
ch0->iir[0].B0=1;
ch0->iir[0].B1=0;
ch0->iir[0].B2=0;
ch0->iir[0].A1=0;
ch0->iir[0].A2=0;
ch0->iir[1].B0=1;
ch0->iir[1].B1=0;
ch0->iir[1].B2=0;
ch0->iir[1].A1=0;
ch0->iir[1].A2=0;
ch0->iir[2].B0=0.000769;
ch0->iir[2].B1=0.001538;
ch0->iir[2].B2=0.000769;
ch0->iir[2].A1=1.92076;
ch0->iir[2].A2=-0.923833;
ch1->InputMode=ENCODER_MODE;
ch1->OutputMode=DAC_SERVO_MODE;
ch1->Vel=40000;
ch1->Accel=400000;
ch1->Jerk=4e+006;
ch1->P=2;
ch1->I=0;
ch1->D=0;
ch1->FFAccel=0;
ch1->FFVel=0;
ch1->MaxI=200;
ch1->MaxErr=1e+006;
ch1->MaxOutput=2047;
ch1->DeadBandGain=1;
ch1->DeadBandRange=0;
ch1->InputChan0=1;
ch1->InputChan1=0;
ch1->OutputChan0=1;
ch1->OutputChan1=0;
ch1->MasterAxis=-1;
ch1->LimitSwitchOptions=0x0;
ch1->InputGain0=-1;
ch1->InputGain1=1;
ch1->InputOffset0=0;
ch1->InputOffset1=0;
ch1->OutputGain=1;
ch1->OutputOffset=0;
ch1->SlaveGain=1;
ch1->BacklashMode=BACKLASH_OFF;
ch1->BacklashAmount=0;
ch1->BacklashRate=0;
ch1->invDistPerCycle=1;
ch1->Lead=0;
ch1->MaxFollowingError=1000000000;
ch1->StepperAmplitude=20;
ch1->iir[0].B0=1;
ch1->iir[0].B1=0;
ch1->iir[0].B2=0;
ch1->iir[0].A1=0;
ch1->iir[0].A2=0;
ch1->iir[1].B0=1;
ch1->iir[1].B1=0;
ch1->iir[1].B2=0;
ch1->iir[1].A1=0;
ch1->iir[1].A2=0;
ch1->iir[2].B0=0.000769;
ch1->iir[2].B1=0.001538;
ch1->iir[2].B2=0.000769;
ch1->iir[2].A1=1.92081;
ch1->iir[2].A2=-0.923885;
ch2->InputMode=ENCODER_MODE;
ch2->OutputMode=DAC_SERVO_MODE;
ch2->Vel=40000;
ch2->Accel=400000;
ch2->Jerk=4e+006;
ch2->P=2;
ch2->I=0;
ch2->D=0;
ch2->FFAccel=0;
ch2->FFVel=0;
ch2->MaxI=200;
ch2->MaxErr=1e+006;
ch2->MaxOutput=2047;
ch2->DeadBandGain=1;
ch2->DeadBandRange=0;
ch2->InputChan0=2;
ch2->InputChan1=0;
ch2->OutputChan0=2;
ch2->OutputChan1=0;
ch2->MasterAxis=-1;
ch2->LimitSwitchOptions=0x0;
ch2->InputGain0=-1;
ch2->InputGain1=1;
ch2->InputOffset0=0;
ch2->InputOffset1=0;
ch2->OutputGain=1;
ch2->OutputOffset=0;
ch2->SlaveGain=1;
ch2->BacklashMode=BACKLASH_OFF;
ch2->BacklashAmount=0;
ch2->BacklashRate=0;
ch2->invDistPerCycle=1;
ch2->Lead=0;
ch2->MaxFollowingError=1000000000;
ch2->StepperAmplitude=20;
ch2->iir[0].B0=1;
ch2->iir[0].B1=0;
ch2->iir[0].B2=0;
ch2->iir[0].A1=0;
ch2->iir[0].A2=0;
ch2->iir[1].B0=1;
ch2->iir[1].B1=0;
ch2->iir[1].B2=0;
ch2->iir[1].A1=0;
ch2->iir[1].A2=0;
ch2->iir[2].B0=0.000769;
ch2->iir[2].B1=0.001538;
ch2->iir[2].B2=0.000769;
ch2->iir[2].A1=1.92081;
ch2->iir[2].A2=-0.923885;
//enable X, Y, Z Axis
EnableAxis(0); //enables X axis
EnableAxis(1); //enables Y axis
EnableAxis(2); //enables Z axis
}
Group: DynoMotion Message: 7059 From: Tom Kerekes Date: 3/19/2013
Subject: Re: error executing PC program
Hi Gregg,
 
Select "Execute Prog" to execute a C Program in KFLOP. 

"Execute PC" is used for executing a Windows Executable Program on the PC.

Regards
TK

Group: DynoMotion Message: 7061 From: funncarsmi Date: 3/19/2013
Subject: Re: error executing PC program
I tried that too, but I'm not sure what I should enter for "Thread" and "VAR", so I left it to the default setting. That didn't work.

I read the help file, but it still doesn't tell me what a persist variable is or what it does. I found message #411, and it answers some of my questions.
So now I set it to Thread 7 Var 0, and it seems to work. But I have no idea what I am actually setting.

Does Thread 7 mean it loads the first time from the Thread 7 location from Kmotion "C Program" screen.
and VAR 99 means it permanently stores it in the user data area VAR 99 (0 -99 being available without overwriting anything)?

This VAR data will all be overwritten the first time someone presses the "user flash" button, correct?




--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
>
>
> Hi Gregg,
>  
> Select "Execute Prog" to execute a C Program in KFLOP. 
>
>
> "Execute PC" is
> used for executing a Windows Executable Program on the PC.
>
> Regards
> TK
>
>
> ________________________________
> From: funncarsmi <funncars@...>
> To: DynoMotion@yahoogroups.com
> Sent: Tuesday, March 19, 2013 3:03 PM
> Subject: [DynoMotion] error executing PC program
>
>
>  
> When I am in Kmotion "C Program": I can open a file download it and run it... and it runs perfectly. But I must always download it before I run it or nothing happens.
>
> When I am in KmotionCNC or Mach3 and press the init button (which is configured to open that file) I get an error message. i.e in KmotionCNC: "Error executing PC program:" then it names the correct file, Return code =1 Abort?"
>
> What am I doing wrong?
>
> Gregg
>
> #include "KMotionDef.h"
> //init program for Tree320 Mill
> main()
> {
> //define Kflop JP4 Digital I/O 16 to 25 as outputs
> SetBitDirection(16,1); // define bit16 as input (0) or output (1)
> SetBitDirection(17,1); // define bit17 as input (0) or output (1)
> SetBitDirection(18,1); // define bit18 as input (0) or output (1)
> SetBitDirection(19,1); // define bit19 as input (0) or output (1)
> SetBitDirection(20,1); // define bit as input (0) or output (1)
> SetBitDirection(21,1); // define bit as input (0) or output (1)
> SetBitDirection(22,1); // define bit as input (0) or output (1)
> SetBitDirection(23,1); // define bit as input (0) or output (1)
> SetBitDirection(24,1); // define bit as input (0) or output (1)
> SetBitDirection(25,1); // define bit as input (0) or output (1)
> SetBit(16); //turn spindle CW LED 1=off
> SetBit(17); //turn spindle CCW LED 1=off
> ClearBit(18); //stop spindle & Turn Spindle Stop LED 0=on
> SetBit(20); //turn drive Enable LED 1=off
> SetBit(21); //turn EStop Reset Lamp LED 1=off
> SetBit(22); //turn Cycle Start LED 1=off
> SetBit(23); //turn Manual Mode LED 1=off
> ClearBit(24); //turn Low range Lamp LED 0=on
> SetBit(25); //turn High Range Lamp LED 1=off
> //configure drives
> ch0->InputMode=ENCODER_MODE;
> ch0->OutputMode=DAC_SERVO_MODE;
> ch0->Vel=30000;
> ch0->Accel=900000;
> ch0->Jerk=4e+006;
> ch0->P=3;
> ch0->I=0;
> ch0->D=2;
> ch0->FFAccel=0;
> ch0->FFVel=0.02;
> ch0->MaxI=200;
> ch0->MaxErr=1e+006;
> ch0->MaxOutput=2047;
> ch0->DeadBandGain=1;
> ch0->DeadBandRange=0;
> ch0->InputChan0=0;
> ch0->InputChan1=0;
> ch0->OutputChan0=0;
> ch0->OutputChan1=0;
> ch0->MasterAxis=-1;
> ch0->LimitSwitchOptions=0x0;
> ch0->InputGain0=-1;
> ch0->InputGain1=1;
> ch0->InputOffset0=0;
> ch0->InputOffset1=0;
> ch0->OutputGain=1;
> ch0->OutputOffset=0;
> ch0->SlaveGain=1;
> ch0->BacklashMode=BACKLASH_OFF;
> ch0->BacklashAmount=0;
> ch0->BacklashRate=0;
> ch0->invDistPerCycle=1;
> ch0->Lead=0;
> ch0->MaxFollowingError=1000000000;
> ch0->StepperAmplitude=20;
> ch0->iir[0].B0=1;
> ch0->iir[0].B1=0;
> ch0->iir[0].B2=0;
> ch0->iir[0].A1=0;
> ch0->iir[0].A2=0;
> ch0->iir[1].B0=1;
> ch0->iir[1].B1=0;
> ch0->iir[1].B2=0;
> ch0->iir[1].A1=0;
> ch0->iir[1].A2=0;
> ch0->iir[2].B0=0.000769;
> ch0->iir[2].B1=0.001538;
> ch0->iir[2].B2=0.000769;
> ch0->iir[2].A1=1.92076;
> ch0->iir[2].A2=-0.923833;
> ch1->InputMode=ENCODER_MODE;
> ch1->OutputMode=DAC_SERVO_MODE;
> ch1->Vel=40000;
> ch1->Accel=400000;
> ch1->Jerk=4e+006;
> ch1->P=2;
> ch1->I=0;
> ch1->D=0;
> ch1->FFAccel=0;
> ch1->FFVel=0;
> ch1->MaxI=200;
> ch1->MaxErr=1e+006;
> ch1->MaxOutput=2047;
> ch1->DeadBandGain=1;
> ch1->DeadBandRange=0;
> ch1->InputChan0=1;
> ch1->InputChan1=0;
> ch1->OutputChan0=1;
> ch1->OutputChan1=0;
> ch1->MasterAxis=-1;
> ch1->LimitSwitchOptions=0x0;
> ch1->InputGain0=-1;
> ch1->InputGain1=1;
> ch1->InputOffset0=0;
> ch1->InputOffset1=0;
> ch1->OutputGain=1;
> ch1->OutputOffset=0;
> ch1->SlaveGain=1;
> ch1->BacklashMode=BACKLASH_OFF;
> ch1->BacklashAmount=0;
> ch1->BacklashRate=0;
> ch1->invDistPerCycle=1;
> ch1->Lead=0;
> ch1->MaxFollowingError=1000000000;
> ch1->StepperAmplitude=20;
> ch1->iir[0].B0=1;
> ch1->iir[0].B1=0;
> ch1->iir[0].B2=0;
> ch1->iir[0].A1=0;
> ch1->iir[0].A2=0;
> ch1->iir[1].B0=1;
> ch1->iir[1].B1=0;
> ch1->iir[1].B2=0;
> ch1->iir[1].A1=0;
> ch1->iir[1].A2=0;
> ch1->iir[2].B0=0.000769;
> ch1->iir[2].B1=0.001538;
> ch1->iir[2].B2=0.000769;
> ch1->iir[2].A1=1.92081;
> ch1->iir[2].A2=-0.923885;
> ch2->InputMode=ENCODER_MODE;
> ch2->OutputMode=DAC_SERVO_MODE;
> ch2->Vel=40000;
> ch2->Accel=400000;
> ch2->Jerk=4e+006;
> ch2->P=2;
> ch2->I=0;
> ch2->D=0;
> ch2->FFAccel=0;
> ch2->FFVel=0;
> ch2->MaxI=200;
> ch2->MaxErr=1e+006;
> ch2->MaxOutput=2047;
> ch2->DeadBandGain=1;
> ch2->DeadBandRange=0;
> ch2->InputChan0=2;
> ch2->InputChan1=0;
> ch2->OutputChan0=2;
> ch2->OutputChan1=0;
> ch2->MasterAxis=-1;
> ch2->LimitSwitchOptions=0x0;
> ch2->InputGain0=-1;
> ch2->InputGain1=1;
> ch2->InputOffset0=0;
> ch2->InputOffset1=0;
> ch2->OutputGain=1;
> ch2->OutputOffset=0;
> ch2->SlaveGain=1;
> ch2->BacklashMode=BACKLASH_OFF;
> ch2->BacklashAmount=0;
> ch2->BacklashRate=0;
> ch2->invDistPerCycle=1;
> ch2->Lead=0;
> ch2->MaxFollowingError=1000000000;
> ch2->StepperAmplitude=20;
> ch2->iir[0].B0=1;
> ch2->iir[0].B1=0;
> ch2->iir[0].B2=0;
> ch2->iir[0].A1=0;
> ch2->iir[0].A2=0;
> ch2->iir[1].B0=1;
> ch2->iir[1].B1=0;
> ch2->iir[1].B2=0;
> ch2->iir[1].A1=0;
> ch2->iir[1].A2=0;
> ch2->iir[2].B0=0.000769;
> ch2->iir[2].B1=0.001538;
> ch2->iir[2].B2=0.000769;
> ch2->iir[2].A1=1.92081;
> ch2->iir[2].A2=-0.923885;
> //enable X, Y, Z Axis
> EnableAxis(0); //enables X axis
> EnableAxis(1); //enables Y axis
> EnableAxis(2); //enables Z axis
> }
>
Group: DynoMotion Message: 7065 From: ericncn Date: 3/19/2013
Subject: Re: error executing PC program
I am confused too by the "thread" and "var" fields in that screen.

In my imagination a thread is something like a neverending loop, and KFlop allows defining of 7 user threads so why do I have to consume one thread for a short program that ends immediately?

I guess I could associate different buttons all to same thread number so I'd consume only one thread for all the programs that aren't neverending?

Also what's the "var" purpose?

EC


--- In DynoMotion@yahoogroups.com, "funncarsmi" <funncars@...> wrote:
>
> I tried that too, but I'm not sure what I should enter for "Thread" and "VAR", so I left it to the default setting. That didn't work.
>
> I read the help file, but it still doesn't tell me what a persist variable is or what it does. I found message #411, and it answers some of my questions.
> So now I set it to Thread 7 Var 0, and it seems to work. But I have no idea what I am actually setting.
>
> Does Thread 7 mean it loads the first time from the Thread 7 location from Kmotion "C Program" screen.
> and VAR 99 means it permanently stores it in the user data area VAR 99 (0 -99 being available without overwriting anything)?
>
> This VAR data will all be overwritten the first time someone presses the "user flash" button, correct?
Group: DynoMotion Message: 7066 From: Tom Kerekes Date: 3/19/2013
Subject: Re: error executing PC program
Hi EC,

A C program needs a Thread's memory space and a Threads CPU time slice to execute even if only for a short duration.

The rule is that you can never run two programs in the same Thread at the same time.


The Var setting determines where any necessary data that is to be supplied to the C Program is to be placed in KFLOP's memory.  There is a global memory space in KFLOP that can be used for a number of purposes (transferring dat to/from the PC, between Threads, from one execution to the next, etc...  This memory space consists of 200 32-bit integer variables.  Declared in KFLOP as int persist.UserData[200].   

HTH
Regards
TK